home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Merciful 1
/
Merciful - Disc 1.iso
/
software
/
c
/
credit_text_scroller
/
credittextscroller.dms
/
in.adf
/
TASS
/
Macros
/
SETPEN.REXX
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
OS/2 REXX Batch file
|
1990-08-29
|
337 b
|
19 lines
/* Set Pen Macro */
address 'REXX'
parse source type result called resolved ext host garbage
options results
address(host)
AskScreenWidth ; Width = result
AskScreenHeight ; Height = result
Width = (8 * ((Width-4) % 16)) + 4
Height = (8 * ((Height-12) % 16)) + 11
request SetPen width%4 Height%4 Width Height
Say result
exit 0